/* 
   SHIPPER STYLES (Light Mode Focused)
   Sleek authentication pages for customers
   Colors: Original UpSide Blue (#4f5dff)
*/

:root {
    --brand-blue: #4f5dff;
    --brand-blue-hover: #3b46cf;
    --bg-light: #f8faff;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --white: #ffffff;
    --border: #e2e8f0;
    --white: #ffffff;
}

a.primary-btn,
a.outline-btn {
    text-decoration: none;
    white-space: nowrap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.auth-hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 40px;
    /* Space for fixed navbar */
}

.auth-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header img {
    height: 44px;
    margin-bottom: 20px;
}

.auth-header h2 {
    font-size: 24px;
    font-weight: 700;
}

.auth-header h2 span {
    color: var(--brand-blue);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
}

.input-wrapper input {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: 0.2s;
}

.input-wrapper input:focus {
    border-color: var(--brand-blue);
}

.auth-form .primary-btn {
    width: 100%;
}

.primary-btn {
    padding: 14px;
    background: var(--brand-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}

.primary-btn:hover {
    background: var(--brand-blue-hover);
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: var(--text-muted);
}

.auth-footer a {
    color: var(--brand-blue);
    font-weight: 600;
    text-decoration: none;
}